home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000224_news@columbia.edu_Tue Jun 27 14:41:45 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14911
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Jun 1995 10:41:51 -0400
  3. Received: by apakabar.cc.columbia.edu id AA05355
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Jun 1995 10:41:49 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: SLIP dialing and connecting
  9. Date: 27 Jun 1995 14:41:45 GMT
  10. Organization: Columbia University
  11. Lines: 37
  12. Message-Id: <3sp5b9$578@apakabar.cc.columbia.edu>
  13. References: <DAsrtC.5vM@midway.uchicago.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <DAsrtC.5vM@midway.uchicago.edu>,
  18. Steven Schwartz <ses3@midway.uchicago.edu> wrote:
  19. :     I've been trying to configure MS-DOS Kermit 3.14, the version before
  20. : this most recent update, to connect and support SLIP on our current system.
  21. : I'm using a USRobotics 28.8 modem, and getting some very strange results.
  22. : ...  But I've been having problems with dropped characters...
  23. :
  24. Do you have RTS/CTS enabled in Kermit *and* in the modem?  Did you use
  25. the SPORT.SCR dialing script that comes with MS-DOS Kermit?  Lack of adequate
  26. flow control is the most likely explanation for dropped characters.  If you
  27. are using RTS/CTS correctly (i.e. it is enabled in both Kermit and modem,
  28. and the cable, if any, actually has end-to-end wires for these signals :-),
  29. then either you have an interrupt conflict, an unbuffered UART, or both.
  30.  
  31. : ... and simply 
  32. : getting the consarned script to connect correctly, as "output" commands fail
  33. : to output correctly, giving the full text rather than, say, a $(environment)
  34. : variable substitution ...
  35. :
  36. Did you put a backslash in front of the $ sign?
  37.  
  38. : ... and seem incapable of sending a carriage return.
  39. :
  40. output foo\13
  41.  
  42. sends "foo" followed by a carriage return.  13 is the ASCII code for
  43. carriage return.
  44.  
  45. : Given this, the entire scripting situation is a right royal mess.
  46. :     Any tips, suggestions, script samples would be greatly appreciated, as
  47. : I've been over the .BWR, .HLP, and .UPD files, along with Network.doc, so
  48. : often that I'm seeing them in my dreams. ;-)
  49. Do you see the "Using MS-DOS Kermit" chapters on script programming there
  50. too ?-)
  51.  
  52. - Frank